Conversation
- Add testdata/{uv,poetry,pipenv,pip}/ fixtures (pyproject.toml/lockfiles/script.py)
- Add python/e2e_test.go with one test per package manager; skips if tool not on PATH
- Add .github/workflows/test.yml: matrix CI over uv/poetry/pipenv/pip
- Remove root-level Python demo files (Pipfile*, pyproject.toml, poetry*, requirements.txt, script.py, main.go)
- Update AGENTS.md with testdata layout and test commands
- actions/checkout: v2/v4 -> v6 - actions/setup-go: v5 -> v6 - actions/setup-python: v5 -> v6 - astral-sh/setup-uv: v5 -> v8 - github/codeql-action/*: v1 -> v4 - Remove stale PR checkout workaround from codeql-analysis.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
python/pyflow.go,pyflow.lock, andpyproject.toml.pyflow; removed__pypackages__detection paths fromrun.goandvirtualenv.gopython/uv.gohandler runsuv sync; detection via presence ofuv.lock(added topep518.go)pep518ProcchecksisUv(path)beforeisPoetry(tomlContent)Package Manager Precedence (updated)
uv.lock+pyproject.tomlpyproject.tomlwith[tool.poetry]Pipfilerequirements.txtFiles Changed
python/uv.go— new uv handler (uvProc)python/pep518.go— addedisUv(), updated routingpython/run.go— removed PyFlow /__pypackages__pathspython/virtualenv.go— removed PyFlow cleanup blockpython/pyflow.go— deletedpyflow.lock,pyproject.toml.pyflow— deletedREADME.md— updated package manager table and precedenceAGENTS.md— new agent-facing project documentation.gitignore— removed__pypackages__/, added.sisyphus/Verification
go build ./...✅go vet ./...✅python/✅